.note_page {
    z-index: 10000;
    display: none;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    font-family: dana;
}

.note-header {
    width: 100vw;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    max-width: 700px;
    align-self: center;
}

.note-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 100%;
    cursor: pointer;

}

.note_close {
    width: 50px;
}

.note-title {
    display: flex;
    flex: 1;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin-left: 65px;
}

.note-title_text {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
}

.note-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.note-body-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background-color: #FFFFFF;
    max-width: 700px;
    overflow-y: auto;
}

.table-header {
    width: 100%;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.table-header-1 {
    font-size: 16px;
    color: rgba(50, 50, 50, 1);
    width: 50%;
    text-align: center;

}

.table-header-2 {
    font-size: 16px;
    color: rgba(50, 50, 50, 1);
    width: 25%;
    text-align: center;

}

.table-header-3 {
    font-size: 16px;
    color: rgba(50, 50, 50, 1);
    width: 25%;
    text-align: center;

}

.table-rows {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-line-1 {
    width: 8%;
    font-size: 14px;
    text-align: center;
    color: rgba(50, 50, 50, 1);
}

.table-line-2 {
    width: 42%;
    font-size: 14px;
    text-align: start;
    color: rgba(50, 50, 50, 1);
}

.table-line-3 {
    width: 25%;
    font-size: 14px;
    text-align: center;
    color: rgba(50, 50, 50, 1);
}
.count-option{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 25%;
}
.option-icon{
    width: 25px;
    cursor: pointer;
}
.table-line-4 {
    width: 25%;
    font-size: 12;
    text-align: center;
    color: rgba(50, 50, 50, 1);
}

.seperator-line{
    width: 90%;
    min-height: 1px;
    background-color: rgba(114, 114, 114, 1);
}

.table-sum-row{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 50px;
}

.table-sum-box{
    background-color: rgba(217, 217, 217, 1);
    color: rgba(50, 50, 50, 1);
    padding: 2px 10px;
    margin: 0px 35px;
    border-radius: 50px;
    min-width: 45%;
    text-align: center;
}

.food-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #de7129;
    padding: 8px 30px;
    width: 85%;
    height: 57px;
    border-radius: 28px;
    align-self: center;
    margin-bottom: 30px;
}

.food-note_title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.food-note_options {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.food-note_text {
    color: #fff;
    font-size: 16px;
}

.food-count__note {
    color: #fff;
    font-size: 20px;
    width: 60px;
    text-align: center;
}

.menu_logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.menu_logo {
    width: 30px;
    margin: 0px 8px;
    cursor: pointer;
    display: inline;
}

.menu_logo_2 {
    width: 30px;
    margin: 0px 8px;
    cursor: pointer;
    display: none;
}
.no-order{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.no-order-text{
    font-size: 16px;
    color: rgba(114, 114, 114, 1);
    text-align: center;
}
.submit-button {
    width: 80%;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    background-color: #E5383B;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 30px;
}

.submit-button-text {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 600;
}